home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
18
/
6
/
DISK1867.ZIP
/
REMIND.BAT
< prev
Wrap
DOS Batch File
|
1990-03-01
|
872b
|
22 lines
echo off
rem REMIND.BAT
rem ╔═════════════════════════════════════════════════════════════════════════╗
rem ║ Note: The "/i:7" in the command below will trigger the reminder every ║
rem ║ 7 days. To trigger a reminder based on the day of the week, the day of ║
rem ║ the month, or at a different interval see the documentation file ║
rem ║ lcg_rmnd.doc for the appropriate command line switches. ║
rem ╚═════════════════════════════════════════════════════════════════════════╝
rem
lcg_rmnd /i:7
if errorlevel 3 goto :NOBACK
if not errorlevel 2 goto :NOBACK
echo -------------------
echo Beginning backup...
rem ╔════════════════════════════════════════╗
rem ║ INSERT YOUR DISK BACK-UP COMMANDS HERE ║
rem ╚════════════════════════════════════════╝
lcg_rmnd /reset
echo -------------------
:NOBACK
echo Done with REMIND.BAT.